home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / gnu / bison_1_22.lha / bison-1.22 / alloca.ch next >
Text File  |  1995-01-20  |  420b  |  34 lines

  1. Changes for ALLOCA.C by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.65
  4. #define    NULL    0
  5. @y
  6. #include <stdlib.h>
  7. @z
  8.  
  9. @x l.77
  10. #ifndef emacs
  11. #define malloc xmalloc
  12. #endif
  13. extern pointer malloc ();
  14. @y
  15. #ifndef emacs
  16. #define malloc xmalloc
  17. #endif
  18. extern pointer xmalloc (unsigned);
  19. @z
  20.  
  21. @x l.104
  22. find_stack_direction ()
  23. @y
  24. find_stack_direction (void)
  25. @z
  26.  
  27. @x l.158
  28. alloca (size)
  29.      unsigned size;
  30. @y
  31. alloca (
  32.      unsigned size)
  33. @z
  34.